(standard-display-european): Treat 0 arg like negative.
authorRichard M. Stallman <rms@gnu.org>
Tue, 7 Jun 1994 18:02:08 +0000 (18:02 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 7 Jun 1994 18:02:08 +0000 (18:02 +0000)
lisp/disp-table.el

index 62af3c2d0702ed5892af2afe0b58d37befe48df6..5dd76dd4f4b9e8863c9d49cd1bfa1581ff136f4c 100644 (file)
@@ -152,7 +152,7 @@ When enabled, characters in the range of 160 to 255 display not
 as octal escapes, but as accented characters.
 With prefix argument, enable European character display iff arg is positive."
   (interactive "P")
-  (if (or (< (prefix-numeric-value arg) 0)
+  (if (or (<= (prefix-numeric-value arg) 0)
          (and (null arg)
               (vectorp standard-display-table)
               (>= (length standard-display-table) 161)